home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c++-part1 / 3958 < prev    next >
Encoding:
Internet Message Format  |  1996-08-06  |  655 b 

  1. Path: news.netset.com!usenet
  2. From: "Paul M. Helmick" <helmic19@netset.com>
  3. Newsgroups: comp.lang.c++
  4. Subject: Re: How I redirect output away from the screen?
  5. Date: Wed, 24 Jan 1996 18:58:28 -0500
  6. Organization: NetSet Internet Services
  7. Message-ID: <3106C7A4.67B9@netset.com>
  8. References: <DLM67E.G7E@eskimo.com> <4e3ofi$qe5@acme.freenet.columbus.oh.us>
  9. NNTP-Posting-Host: cmh1-ppp4.netset.com
  10. Mime-Version: 1.0
  11. Content-Type: text/plain; charset=us-ascii
  12. Content-Transfer-Encoding: 7bit
  13. X-Mailer: Mozilla 2.0b5 (Win95; I)
  14.  
  15. > Did you try
  16. > system("move *.* c:\dir1 >text.txt");
  17.  
  18. this will do the trick with no file creation.
  19.     system("move *.* c:\dir1 >nul");
  20.